home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / editors / mntemacs.zoo / src / scroll.c < prev    next >
C/C++ Source or Header  |  1991-12-02  |  16KB  |  508 lines

  1. /* Calculate what ins/del line to do, and do it, for Emacs redisplay.
  2.    Copyright (C) 1985, 1986, 1990 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. #include <stdio.h>
  22. #include "config.h"
  23. #include "termchar.h"
  24. #include "termhooks.h"
  25. #include "dispextern.h"
  26.  
  27. #define max(a, b) ((a) > (b) ? (a) : (b))
  28. #define min(a, b) ((a) < (b) ? (a) : (b))
  29.  
  30. struct matrix_elt
  31.   {
  32.     /* Cost of outputting through this line
  33.        if no insert/delete is done just above it.  */
  34.     int writecost;
  35.     /* Cost of outputting through this line
  36.        if an insert is done just above it.  */
  37.     int insertcost;
  38.     /* Cost of outputting through this line
  39.        if a delete is done just above it.  */
  40.     int deletecost;
  41.     /* Number of inserts so far in this run of inserts,
  42.        for the cost in insertcost.  */
  43.     char insertcount;
  44.     /* Number of deletes so far in this run of deletes,
  45.        for the cost in deletecost.  */
  46.     char deletecount;
  47.   };
  48.  
  49. /* This exceeds the sum of any reasonable number of INFINITY's.  */
  50. #define SUPER_INFINITY (1000 * INFINITY)
  51.  
  52. /* See CalcIDCosts for on the arrays below */
  53. int *ILcost;
  54. int *DLcost;
  55. int *ILncost;
  56. int *DLncost;
  57.  
  58. scrolling_1 (window_size, unchanged_at_top, unchanged_at_bottom,
  59.          draw_cost, old_hash, new_hash, free_at_end)
  60.      int window_size, unchanged_at_top, unchanged_at_bottom;
  61.      int *draw_cost;
  62.      int *old_hash;
  63.      int *new_hash;
  64.      int free_at_end;
  65. {
  66.   struct matrix_elt *matrix;
  67.   matrix = ((struct matrix_elt *)
  68.         alloca ((window_size + 1) * (window_size + 1) * sizeof *matrix));
  69.  
  70.   calculate_scrolling (matrix, window_size, unchanged_at_bottom,
  71.                draw_cost, old_hash, new_hash,
  72.                free_at_end);
  73.   do_scrolling (matrix, window_size, unchanged_at_top);
  74. }
  75.  
  76. /* Determine, in matrix[i,j], the cost of updating the first j old lines
  77.    into the first i new lines.
  78.    This involves using insert or delete somewhere if i != j.
  79.    For each matrix elements, three kinds of costs are recorded:
  80.    the smallest cost that ends with an insert, the smallest
  81.    cost that ends with a delete, and the smallest cost that
  82.    ends with neither one.  These are kept separate because
  83.    on some terminals the cost of doing an insert varies
  84.    depending on whether one was just done, etc.  */
  85.  
  86. /* draw_cost[VPOS] is the cost of outputting new line at VPOS.
  87.    old_hash[VPOS] is the hash code of the old line at VPOS.
  88.    new_hash[VPOS] is the hash code of the new line at VPOS.
  89.    Note that these are not true screen vpos's, but relative
  90.    to the place at which the first mismatch between old and
  91.    new contents appears.  */
  92.  
  93. calculate_scrolling (matrix, window_size, lines_below,
  94.              draw_cost, old_hash, new_hash,
  95.              free_at_end)
  96.      /* matrix is of size window_size + 1 on each side.  */
  97.      struct matrix_elt *matrix;
  98.      int window_size;
  99.      int *draw_cost;
  100.      int *old_hash;
  101.      int *new_hash;
  102.      int free_at_end;
  103. {
  104.   register int i, j;
  105.   register struct matrix_elt *p, *p1;
  106.   register int cost, cost1;
  107.  
  108.   int lines_moved = window_size + (scroll_region_ok ? 0 : lines_below);
  109.   /* We subtract 1 to compensate for the fact that i and j have values
  110.      starting with 1.  */
  111.   int *first_insert_cost = &ILcost[screen_height - lines_moved - 1];
  112.   int *first_delete_cost = &DLcost[screen_height - lines_moved - 1];
  113.   int *next_insert_cost = &ILncost[screen_height - lines_moved - 1];
  114.   int *next_delete_cost = &DLncost[screen_height - lines_moved - 1];
  115.  
  116.   /* initialize the top left corner of the matrix */
  117.   matrix->writecost = 0;
  118.   matrix->insertcost = SUPER_INFINITY;
  119.   matrix->deletecost = SUPER_INFINITY;
  120.   matrix->insertcount = 0;
  121.   matrix->deletecount = 0;
  122.  
  123.   /* initialize the left edge of the matrix */
  124.   cost = first_insert_cost[1] - next_insert_cost[1];
  125.   for (i = 1; i <= window_size; i++)
  126.     {
  127.       p = matrix + i * (window_size + 1);
  128.       cost += draw_cost[i] + next_insert_cost[i];
  129.       p->insertcost = cost;
  130.       p->writecost = SUPER_INFINITY;
  131.       p->deletecost = SUPER_INFINITY;
  132.       p->insertcount = i;
  133.       p->deletecount = 0;
  134.     }
  135.  
  136.   /* initialize the top edge of the matrix */
  137.   cost = first_delete_cost[1] - next_delete_cost[1];
  138.   for (j = 1; j <= window_size; j++)
  139.     {
  140.       cost += next_delete_cost[j];
  141.       matrix[j].deletecost = cost;
  142.       matrix[j].writecost = SUPER_INFINITY;
  143.       matrix[j].insertcost = SUPER_INFINITY;
  144.       matrix[j].deletecount = j;
  145.       matrix[j].insertcount = 0;
  146.     }
  147.  
  148.   /* `i' represents the vpos among new screen contents.
  149.      `j' represents the vpos among the old screen contents.  */
  150.   p = matrix + window_size + 2;    /* matrix [1, 1] */
  151.   for (i = 1; i <= window_size; i++, p++)
  152.     for (j = 1; j <= window_size; j++, p++)
  153.       {
  154.     /* p contains the address of matrix [i, j] */
  155.  
  156.     /* First calculate the cost assuming we do
  157.        not insert or delete above this line.
  158.        That is, if we update through line i-1
  159.        based on old lines through j-1,
  160.        and then just change old line j to new line i.  */
  161.     p1 = p - window_size - 2; /* matrix [i-1, j-1] */
  162.     cost = p1->writecost;
  163.     if (cost > p1->insertcost)
  164.       cost = p1->insertcost;
  165.     if (cost > p1->deletecost)
  166.       cost = p1->deletecost;
  167.     if (old_hash[j] != new_hash[i])
  168.       cost += draw_cost[i];
  169.     p->writecost = cost;
  170.  
  171.     /* Calculate the cost if we do an insert-line
  172.        before outputting this line.
  173.        That is, we update through line i-1
  174.        based on old lines through j,
  175.        do an insert-line on line i,
  176.        and then output line i from scratch,
  177.        leaving old lines starting from j for reuse below.  */
  178.     p1 = p - window_size - 1; /* matrix [i-1, j] */
  179.     /* No need to think about doing a delete followed
  180.        immediately by an insert.  It cannot be as good
  181.        as not doing either of them.  */
  182.     if (free_at_end == i)
  183.       {
  184.         cost = p1->writecost;
  185.         cost1 = p1->insertcost;
  186.       }
  187.     else
  188.       {
  189.         cost = p1->writecost + first_insert_cost[i];
  190.         if (p1->insertcount > i)
  191.           abort ();
  192.         cost1 = p1->insertcost + next_insert_cost[i - p1->insertcount];
  193.       }
  194.     p->insertcost = min (cost, cost1) + draw_cost[i];
  195.     p->insertcount = (cost < cost1) ? 1 : p1->insertcount + 1;
  196.     if (p->insertcount > i)
  197.       abort ();
  198.  
  199.     /* Calculate the cost if we do a delete line after
  200.        outputting this line.
  201.        That is, we update through line i
  202.        based on old lines through j-1,
  203.        and throw away old line j.  */
  204.     p1 = p - 1;        /* matrix [i, j-1] */
  205.     /* No need to think about doing an insert followed
  206.        immediately by a delete.  */
  207.     if (free_at_end == i)
  208.       {
  209.         cost = p1->writecost;
  210.         cost1 = p1->deletecost;
  211.       }
  212.     else
  213.       {
  214.         cost = p1->writecost + first_delete_cost[i];
  215.         cost1 = p1->deletecost + next_delete_cost[i];
  216.       }
  217.     p->deletecost = min (cost, cost1);
  218.     p->deletecount = (cost < cost1) ? 1 : p1->deletecount + 1;
  219.       }
  220. }
  221.  
  222. /* Perform insert-lines and delete-lines operations
  223.  according to the costs in the matrix.
  224.  Updates the contents of current_screen to record what was done. */
  225.  
  226. do_scrolling (matrix, window_size, unchanged_at_top)
  227.      struct matrix_elt *matrix;
  228.      int window_size;
  229.      int unchanged_at_top;
  230. {
  231.   register struct matrix_elt *p;
  232.   register int i, j;
  233.   struct queue { int count, pos; } *queue;
  234.   int offset = unchanged_at_top;
  235.   int qi = 0;
  236.   int window = 0;
  237.   register int tem;
  238.   int next;
  239.  
  240.   queue = (struct queue *) alloca (screen_height * sizeof (struct queue));
  241.  
  242.   bcopy (current_screen->contents, temp_screen->contents,
  243.      current_screen->height * sizeof (char *));
  244.   bcopy (current_screen->used, temp_screen->used,
  245.      current_screen->height * sizeof (int));
  246.   bcopy (current_s